home *** CD-ROM | disk | FTP | other *** search
/ PC Master 5 / PC MASTER 5.iso / INTERNET / KIT / WIN95 / MSIE30.EXE / ieakjava.exe / classr.exe / com / ms / awt / OutlinePolygon.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-31  |  513 b   |  23 lines

  1. package com.ms.awt;
  2.  
  3. public class OutlinePolygon {
  4.    public static final int OUTLINE_UNDEFINED = 0;
  5.    public static final int OUTLINE_TRUETYPE = 1;
  6.    public static final int OUTLINE_POLYBEZIER = 2;
  7.    public int type;
  8.    public PointFx fxStart;
  9.    public OutlineCurve[] curves;
  10.  
  11.    public OutlinePolygon() {
  12.       this.type = 0;
  13.    }
  14.  
  15.    public OutlinePolygon(int var1) {
  16.       if (var1 != 1 && var1 != 2) {
  17.          int var10000 = var1 - 0;
  18.       }
  19.  
  20.       this.type = var1;
  21.    }
  22. }
  23.